home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Movie2a.h < prev    next >
C/C++ Source or Header  |  1999-01-08  |  1KB  |  33 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Movie1H
  3. #define Movie1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\SysUtils.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\Classes.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TMovie : public TImage
  12. {
  13. private:
  14.   int Nr;
  15.   int Bremse;
  16.   String Bild;
  17.   String Pfad;
  18.   void __fastcall GetNr (String Datei, int x);
  19.   void __fastcall GetImage (String Datei);
  20. protected:
  21. public:
  22.   void __fastcall SetSize (TRect Rechteck);
  23.   void __fastcall ShowImage (String Datei);
  24.   void __fastcall HideImage (void);
  25.   bool __fastcall MoveImage (String Datei);
  26.   bool __fastcall TurnImage (String Datei);
  27.   bool __fastcall TwistImage (String Datei);
  28.   __fastcall TMovie(TComponent* Owner);
  29. __published:
  30. };
  31. //---------------------------------------------------------------------------
  32. #endif
  33.